home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / pbmplus / pbmplus.h < prev    next >
Text File  |  1995-05-28  |  6KB  |  211 lines

  1. /* pbmplus.h - header file for PBM, PGM, PPM, and PNM
  2. **
  3. ** Copyright (C) 1988, 1989, 1991 by Jef Poskanzer.
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation.  This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12.  
  13. #ifndef _PBMPLUS_H_
  14. #define _PBMPLUS_H_
  15.  
  16. #ifdef __MWERKS__
  17. #define macintosh
  18. #endif
  19.  
  20. #ifndef macintosh
  21. #include <sys/types.h>
  22. #endif
  23. #include <ctype.h>
  24. #include <stdio.h>
  25.  
  26. #if defined(USG) || defined(SVR4)
  27. #define SYSV
  28. #endif
  29. #if ! ( defined(BSD) || defined(SYSV) || defined(MSDOS) || defined(macintosh) )
  30. /* CONFIGURE: If your system is >= 4.2BSD, set the BSD option; if you're a
  31. ** System V site, set the SYSV option; and if you're IBM-compatible, set
  32. ** MSDOS.  If your compiler is ANSI C, you're probably better off setting
  33. ** SYSV - all it affects is string handling.
  34. */
  35. #define BSD
  36. /* #define SYSV */
  37. /* #define MSDOS */
  38. #endif
  39.  
  40. /* CONFIGURE: If you want to enable writing "raw" files, set this option.
  41. ** "Raw" files are smaller, and much faster to read and write, but you
  42. ** must have a filesystem that allows all 256 ASCII characters to be read
  43. ** and written.  You will no longer be able to mail P?M files without 
  44. ** using uuencode or the equivalent, or running the files through pnmnoraw.
  45. ** Note that reading "raw" files works whether writing is enabled or not.
  46. */
  47. #define PBMPLUS_RAWBITS
  48.  
  49. /* CONFIGURE: PGM can store gray values as either bytes or shorts.  For most
  50. ** applications, bytes will be big enough, and the memory savings can be
  51. ** substantial.  However, if you need more than 8 bits of grayscale resolution,
  52. ** then define this symbol.
  53. */
  54. /* #define PGM_BIGGRAYS */
  55.  
  56. /* CONFIGURE: Normally, PPM handles a pixel as a struct of three grays.
  57. ** If grays are stored in bytes, that's 24 bits per color pixel; if
  58. ** grays are stored as shorts, that's 48 bits per color pixel.  PPM
  59. ** can also be configured to pack the three grays into a single longword,
  60. ** 10 bits each, 30 bits per pixel.
  61. **
  62. ** If you have configured PGM with the PGM_BIGGRAYS option, AND you don't
  63. ** need more than 10 bits for each color component, AND you care more about
  64. ** memory use than speed, then this option might be a win.  Under these
  65. ** circumstances it will make some of the programs use 1.5 times less space,
  66. ** but all of the programs will run about 1.4 times slower.
  67. **
  68. ** If you are not using PGM_BIGGRAYS, then this option is useless -- it
  69. ** doesn't save any space, but it still slows things down.
  70. */
  71. /* #define PPM_PACKCOLORS */
  72.  
  73. /* CONFIGURE: uncomment this to enable debugging checks. */
  74. /* #define DEBUG */
  75.  
  76. #if defined(__STDC__)
  77. #include <stdlib.h>
  78. #endif
  79.  
  80. #if defined(SYSV)
  81. extern void srand();
  82. extern int rand();
  83. #endif
  84.  
  85. #if  defined(SYSV) || defined(__STDC__)
  86. #include <string.h>
  87.  
  88. #ifndef DONTDEFINDEX
  89. #define index(s,c) strchr(s,c)
  90. #define rindex(s,c) strrchr(s,c)
  91. #endif
  92. #define srandom(s) srand(s)
  93. #define random rand
  94. #define bzero(dst,len) memset(dst,0,len)
  95. #define bcopy(src,dst,len) memcpy(dst,src,len)
  96. #define bcmp memcmp
  97.  
  98. #else /*SYSV*/
  99.  
  100. #include <strings.h>
  101. extern void srandom();
  102. extern long random();
  103.  
  104. #endif /*SYSV*/
  105.  
  106. #ifndef __STDC__
  107. extern int atoi();
  108. #endif
  109. #ifdef BLEAH
  110. extern void exit();
  111. extern long time();
  112. #endif
  113. extern int write();
  114.  
  115. /* CONFIGURE: On some systems, malloc.h doesn't declare these, so we have
  116. ** to do it.  On other systems, for example HP/UX, it declares them
  117. ** incompatibly.  And some systems, for example Dynix, don't have a
  118. ** malloc.h at all.  A sad situation.  If you have compilation problems
  119. ** that point here, feel free to tweak or remove these declarations.
  120. */
  121. #ifndef __STDC__
  122. #include <malloc.h>
  123. #endif
  124.  
  125. /* CONFIGURE: Some systems don't have vfprintf(), which we need for the
  126. ** error-reporting routines.  If you compile and get a link error about
  127. ** this routine, uncomment the first define, which gives you a vfprintf
  128. ** that uses the theoretically non-portable but fairly common routine
  129. ** _doprnt().  If you then get a link error about _doprnt, or
  130. ** message-printing doesn't look like it's working, try the second
  131. ** define instead.
  132. */
  133. /* #define NEED_VFPRINTF1 */
  134. /* #define NEED_VFPRINTF2 */
  135.  
  136. /* End of configurable definitions. */
  137.  
  138.  
  139. #undef max
  140. #define max(a,b) ((a) > (b) ? (a) : (b))
  141. #undef min
  142. #define min(a,b) ((a) < (b) ? (a) : (b))
  143. #undef abs
  144. #define abs(a) ((a) >= 0 ? (a) : -(a))
  145. #undef odd
  146. #define odd(n) ((n) & 1)
  147.  
  148.  
  149. /* Definitions to make PBMPLUS work with either ANSI C or C Classic. */
  150.  
  151. #if __STDC__
  152. #define ARGS(alist) alist
  153. #else /*__STDC__*/
  154. #define ARGS(alist) ()
  155. #define const
  156. #endif /*__STDC__*/
  157.  
  158.  
  159. /* Initialization. */
  160.  
  161. void pm_init ARGS(( int* argcP, char* argv[] ));
  162.  
  163.  
  164. /* Variable-sized arrays definitions. */
  165.  
  166. char** pm_allocarray ARGS(( int cols, int rows, int size ));
  167. char* pm_allocrow ARGS(( int cols, int size ));
  168. void pm_freearray ARGS(( char** its, int rows ));
  169. void pm_freerow ARGS(( char* itrow ));
  170.  
  171.  
  172. /* Case-insensitive keyword matcher. */
  173.  
  174. int pm_keymatch ARGS(( char* str, char* keyword, int minchars ));
  175.  
  176.  
  177. /* Log base two hacks. */
  178.  
  179. int pm_maxvaltobits ARGS(( int maxval ));
  180. int pm_bitstomaxval ARGS(( int bits ));
  181.  
  182.  
  183. /* Error handling definitions. */
  184.  
  185. void pm_message ARGS(( char*, ... ));
  186. void pm_error ARGS(( char*, ... ));            /* doesn't return */
  187. void pm_perror ARGS(( char* reason ));            /* doesn't return */
  188. void pm_usage ARGS(( char* usage ));            /* doesn't return */
  189.  
  190.  
  191. /* File open/close that handles "-" as stdin and checks errors. */
  192.  
  193. FILE* pm_openr ARGS(( char* name ));
  194. FILE* pm_openw ARGS(( char* name ));
  195. void pm_close ARGS(( FILE* f ));
  196.  
  197.  
  198. /* Endian I/O. */
  199.  
  200. int pm_readbigshort ARGS(( FILE* in, short* sP ));
  201. int pm_writebigshort ARGS(( FILE* out, short s ));
  202. int pm_readbiglong ARGS(( FILE* in, long* lP ));
  203. int pm_writebiglong ARGS(( FILE* out, long l ));
  204. int pm_readlittleshort ARGS(( FILE* in, short* sP ));
  205. int pm_writelittleshort ARGS(( FILE* out, short s ));
  206. int pm_readlittlelong ARGS(( FILE* in, long* lP ));
  207. int pm_writelittlelong ARGS(( FILE* out, long l ));
  208.  
  209.  
  210. #endif /*_PBMPLUS_H_*/
  211.